PreserveWhiteSpace Property (FlexGridBase<T>)
In This Topic
Gets or sets a value that determines whether the grid should keep whitespace in cells as they appear in the data or whether it should collapse the whitespace into a single space character
Syntax
'Declaration
<System.ComponentModel.DefaultValueAttribute(False)>
Public Overridable Property PreserveWhiteSpace As System.Boolean
'Usage
Dim instance As FlexGridBase(Of T)
Dim value As System.Boolean
instance.PreserveWhiteSpace = value
value = instance.PreserveWhiteSpace
[System.ComponentModel.DefaultValue(false)]
public virtual System.bool PreserveWhiteSpace {get; set;}
public read-write property PreserveWhiteSpace: System.Boolean; virtual;
System.ComponentModel.DefaultValueAttribute()
public function get,set PreserveWhiteSpace : System.boolean
[System.ComponentModel.DefaultValue(false)]
public: __property virtual System.bool get_PreserveWhiteSpace();
public: __property virtual void set_PreserveWhiteSpace(
System.bool value
);
[System.ComponentModel.DefaultValue(false)]
public:
virtual property System.bool PreserveWhiteSpace {
System.bool get();
void set ( System.bool value);
}
See Also